home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-ROM Collection / Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso / auge4000 / 46 / lib / string / strcmp.c < prev    next >
C/C++ Source or Header  |  1990-06-20  |  317b  |  28 lines

  1.  
  2. /*
  3.  *  STRCMP.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <string.h>
  9.  
  10. typedef unsigned char ubyte;
  11.  
  12. int
  13. strcmp(s, d)
  14. const char *s;
  15. const char *d;
  16. {
  17.     while (*s == *d) {
  18.     if (*s == 0)
  19.         return(0);
  20.     ++s;
  21.     ++d;
  22.     }
  23.     if ((ubyte)*s < (ubyte)*d)
  24.     return(-1);
  25.     return(1);
  26. }
  27.  
  28.